type flag.uint64Value
8 uses
flag (current package)
flag.go#L219: type uint64Value uint64
flag.go#L221: func newUint64Value(val uint64, p *uint64) *uint64Value {
flag.go#L223: return (*uint64Value)(p)
flag.go#L226: func (i *uint64Value) Set(s string) error {
flag.go#L231: *i = uint64Value(v)
flag.go#L235: func (i *uint64Value) Get() any { return uint64(*i) }
flag.go#L237: func (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }
flag.go#L598: case *uintValue, *uint64Value:
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |